return state_set;
}
-static void
-gtk_switch_accessible_finalize (GObject *obj)
-{
- GtkSwitchAccessible *accessible = (GtkSwitchAccessible *)obj;
-
- if (accessible->action_idle)
- g_source_remove (accessible->action_idle);
-
- G_OBJECT_CLASS (gtk_switch_accessible_parent_class)->finalize (obj);
-}
-
static void
gtk_switch_accessible_initialize (AtkObject *accessible,
gpointer widget)
static void
gtk_switch_accessible_class_init (GtkSwitchAccessibleClass *klass)
{
- GObjectClass *object_class = G_OBJECT_CLASS (klass);
AtkObjectClass *atk_class = ATK_OBJECT_CLASS (klass);
- object_class->finalize = gtk_switch_accessible_finalize;
-
atk_class->initialize = gtk_switch_accessible_initialize;
atk_class->ref_state_set = gtk_switch_accessible_ref_state_set;
}
static void
gtk_switch_accessible_init (GtkSwitchAccessible *self)
{
- self->action_idle = 0;
}
static gint
return "toggle";
}
-static gboolean
-idle_do_action (gpointer data)
-{
- GtkSwitchAccessible *accessible = data;
- GtkWidget *widget;
- GtkSwitch *sw;
-
- widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (data));
- sw = GTK_SWITCH (widget);
-
- accessible->action_idle = 0;
-
- if (widget == NULL ||
- !gtk_widget_is_sensitive (widget) || !gtk_widget_get_visible (widget))
- return FALSE;
-
- gtk_switch_set_active (sw, !gtk_switch_get_active (sw));
-
- return FALSE;
-}
-
static gboolean
gtk_switch_action_do_action (AtkAction *action,
gint i)
{
- GtkSwitchAccessible *accessible;
+ GtkSwitch *sw;
GtkWidget *widget;
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (action));
if (!gtk_widget_is_sensitive (widget) || !gtk_widget_get_visible (widget))
return FALSE;
- accessible = (GtkSwitchAccessible *)action;
-
- if (!accessible->action_idle)
- accessible->action_idle = gdk_threads_add_idle (idle_do_action, accessible);
+ sw = GTK_SWITCH (widget);
+ gtk_switch_set_active (sw, !gtk_switch_get_active (sw));
return TRUE;
}